/* * Sun Public License Notice * * The contents of this file are subject to the Sun Public License * Version 1.0 (the "License"). You may not use this file except in * compliance with the License. A copy of the License is available at * http://www.sun.com/ * * The Original Code is NetBeans. The Initial Developer of the Original * Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun * Microsystems, Inc. All Rights Reserved. */ package org.netbeans.modules.properties; import java.awt.Image; import java.beans.*; import java.util.ResourceBundle; import org.openide.util.NbBundle; /** BeanInfo for properties loader. * * @author Ian Formanek */ public final class PropertiesDataLoaderBeanInfo extends SimpleBeanInfo { /** Icons for compiler settings objects. */ private static Image icon; private static Image icon32; /** Propertydescriptors */ private static PropertyDescriptor[] descriptors; /** * @return Returns an array of PropertyDescriptors * describing the editable properties supported by this bean. */ public PropertyDescriptor[] getPropertyDescriptors () { if (descriptors == null) initializeDescriptors(); return descriptors; } /** @param type Desired type of the icon * @return returns the properties loader's icon */ public Image getIcon(final int type) { if ((type == java.beans.BeanInfo.ICON_COLOR_16x16) || (type == java.beans.BeanInfo.ICON_MONO_16x16)) { if (icon == null) icon = loadImage("/org/netbeans/modules/properties/propertiesObject.gif"); return icon; } else { if (icon32 == null) icon32 = loadImage ("/org/netbeans/modules/properties/propertiesObject32.gif"); return icon32; } } private static void initializeDescriptors () { final ResourceBundle bundle = NbBundle.getBundle(PropertiesDataLoaderBeanInfo.class); try { descriptors = new PropertyDescriptor[] { new PropertyDescriptor ("displayName", PropertiesDataLoader.class, "getDisplayName", null), new PropertyDescriptor ("extensions", PropertiesDataLoader.class, "getExtensions", "setExtensions") }; descriptors[0].setDisplayName(bundle.getString("PROP_Name")); descriptors[0].setShortDescription(bundle.getString("HINT_Name")); } catch (IntrospectionException e) { if (Boolean.getBoolean("netbeans.debug.exceptions")) e.printStackTrace (); } } } /* * <<Log>> * 6 Gandalf 1.5 10/23/99 Ian Formanek NO SEMANTIC CHANGE - Sun * Microsystems Copyright in File Comment * 5 Gandalf 1.4 10/13/99 Petr Jiricka Debug messages removed * 4 Gandalf 1.3 8/31/99 Petr Jiricka Added extensions property * 3 Gandalf 1.2 6/9/99 Ian Formanek ---- Package Change To * org.openide ---- * 2 Gandalf 1.1 3/9/99 Ian Formanek Moved images to this * package * 1 Gandalf 1.0 1/22/99 Ian Formanek * $ */